home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / russell / gc32.lha / PCR-Makefile < prev    next >
Makefile  |  1993-04-19  |  2KB  |  45 lines

  1. OBJS= alloc.o reclaim.o allochblk.o misc.o mach_dep.o os_dep.o mark_roots.o headers.o mark.o obj_map.o pcr_interface.o black_list.o finalize.o new_hblk.o real_malloc.o dynamic_load.o debug_malloc.o malloc.o stubborn.o
  2.  
  3. CSRCS= reclaim.c allochblk.c misc.c alloc.c mach_dep.c os_dep.c mark_roots.c headers.c mark.c obj_map.c pcr_interface.c black_list.c finalize.c new_hblk.c real_malloc.c dynamic_load.c debug_malloc.c malloc.c stubborn.c
  4.  
  5. SHELL= /bin/sh
  6.  
  7. # Fix to point to local pcr installation directory.
  8. PCRDIR= /project/ppcr/v1.5
  9. CC= gcc
  10. CFLAGS= -g -DPCR -I$(PCRDIR) -I$(PCRDIR)/pcr -I$(PCRDIR)/pcr/ansi -I$(PCRDIR)/pcr/posix
  11.  
  12. # We assume that mach_dep.o has already been built by top level makefile.  It doesn't
  13. # care about pcr vs UNIX, and we don't want to repeat that cruft.
  14.  
  15. all: gc.o test.o gcpcr
  16.  
  17. gcpcr: gc.o test.o $(PCRDIR)/pcr/base/pcr.o $(PCRDIR)/pcr/base/PCR_BaseMain.o
  18.     $(CC) -o gcpcr $(PCRDIR)/pcr/base/pcr.o $(PCRDIR)/pcr/base/PCR_BaseMain.o gc.o test.o -ldl
  19.  
  20. gc.o: $(OBJS)
  21.     -ld -r -o gc.o $(OBJS)
  22.  
  23. #
  24. # Dependency construction
  25. #
  26. # NOTE: the makefile must include "# DO NOT DELETE THIS LINE" after the
  27. #   last target.  "make depend" will replace everything following that line
  28. #   by a newly-constructed list of dependencies.
  29. #
  30. depend: $(CSRCS)
  31.     rm -f makedep eddep ; \
  32.     $(CC) -M $(CFLAGS) $(CSRCS) \
  33.             | sed -e '/:$$/d' > makedep ; \
  34.     echo '/^# DO NOT DELETE THIS LINE/+1,$$d' >eddep ; \
  35.     echo '$$r makedep' >>eddep ; \
  36.     echo 'w' >>eddep ; \
  37.     cp PCR-Makefile PCR-Makefile.bak ; \
  38.     ex - PCR-Makefile < eddep ; \
  39.     rm -f eddep makedep
  40.     touch depend
  41.     
  42. # DO NOT DELETE THIS LINE
  43.  
  44.  
  45.